flowchart LR
%% Subgraph Styling
subgraph Filesystem
style Filesystem fill:#e0f7fa,stroke:#333,stroke-width:2px,color:#333,font-size:30px
style A fill:#ffffff,stroke:#333,stroke-width:2px,color:#333,font-size:20px
style C fill:#ffffff,stroke:#333,stroke-width:2px,color:#333,font-size:20px
A[Data file <br>.tsv, .csv .xlsx]
C[Exported File]
end
subgraph R-Environment
style R-Environment fill:#e8f5e9,stroke:#333,stroke-width:2px,color:#333,font-size:30px
style B fill:#ffffff,stroke:#333,stroke-width:2px,color:#333,font-size:20px
style D fill:#ffffff,stroke:#333,stroke-width:2px,color:#333,font-size:20px
B[df in <br>R Environment] --> |Transform, Tidy, <br>Model, Visualize| D[df in<br> R Environment]
end
%% Connections
A -->|Read into R| B
D -->|Export as File| C